home *** CD-ROM | disk | FTP | other *** search
/ MACD 5 / MACD 5.bin / workbench / libs / f1gplib352.lha / f1gplib_35.2 / include / libraries / f1gp.i < prev   
Text File  |  1997-02-08  |  880b  |  41 lines

  1.     IFND LIBRARIES_F1GP_I
  2. LIBRARIES_F1GP_I SET 1
  3. **
  4. **    $VER: f1gp.i 35.2 (8.2.97)
  5. **
  6. **    f1gp.library definitions
  7. **
  8. **    (C) Copyright 1995-1997 Oliver Roberts
  9. **    All Rights Reserved
  10. **
  11.  
  12.    IFND    EXEC_TYPES_I
  13.    include 'exec/types.i'
  14.    ENDC
  15.  
  16.    IFND    EXEC_LIBRARIES_I
  17.    include 'exec/libraries.i'
  18.    ENDC
  19.  
  20. ** Constants returned by f1gpDetect()
  21. **
  22. F1GPTYPE_STANDARD    equ    1
  23. F1GPTYPE_WC        equ    2
  24. F1GPTYPE_A600WWW    equ    3
  25.  
  26. ** Definition of the F1GP library base structure.
  27. ** Fields MUST not be modified by user programs, but they can be read.
  28. **
  29.    STRUCTURE F1GPBase,LIB_SIZE
  30.     LONG    F1GPType     ; Current F1GP type - see constants above
  31.     STRUCT  HunkStart,4*4     ; Address of each of F1GP's hunks
  32.     LONG    Seg1         ; HunkStart[0] - 0x2c
  33.     LONG    Seg3         ; HunkStart[2] - 0x4990c/49910/49920
  34.     LABEL   F1GPBase_SIZE
  35.  
  36. F1GPNAME    MACRO
  37.         DC.B "f1gp.library",0
  38.         ENDM
  39.  
  40.    ENDC        ; LIBRARIES_F1GP_I
  41.